home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / aros / source / exec / resident / src / findresident.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-16  |  729 b   |  48 lines

  1. /*
  2.     $Id$
  3.     $Log$
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "exec_intern.h"
  8.  
  9. /*****************************************************************************
  10.  
  11.     NAME */
  12.     #include <clib/exec_protos.h>
  13.  
  14.     __AROS_LH1(struct Resident *, FindResident,
  15.  
  16. /*  SYNOPSIS */
  17.     __AROS_LA(UBYTE *, name, A1),
  18.  
  19. /*  LOCATION */
  20.     struct ExecBase *, SysBase, 16, Exec)
  21.  
  22. /*  FUNCTION
  23.  
  24.     INPUTS
  25.  
  26.     RESULT
  27.  
  28.     NOTES
  29.  
  30.     EXAMPLE
  31.  
  32.     BUGS
  33.  
  34.     SEE ALSO
  35.  
  36.     INTERNALS
  37.  
  38.     HISTORY
  39.     29-10-95    digulla automatically created from
  40.                 exec_lib.fd and clib/exec_protos.h
  41.  
  42. *****************************************************************************/
  43. {
  44.     __AROS_BASE_EXT_DECL(struct ExecBase *,SysBase)
  45.  
  46.     return NULL;
  47. } /* FindResident */
  48.